home *** CD-ROM | disk | FTP | other *** search
Java Source | 1998-10-11 | 2.3 KB | 69 lines |
- package com.symantec.itools.vcafe.beans;
-
- /**
- * Visual Cafe property descriptors supported beyond the standard JavaBeans.
- */
- public class PropertyDescriptorAttributes
- {
- /**
- * Common Attribute
- * Attribute of type String
- * If this attribute is not defined, the property is not in a group.
- */
- public static final String GROUPING_ATTRIBUTE = "grouping";
-
- /**
- * Common Attribute
- * Attribute of type Boolean
- * If this attribute is not defined, the property does not override the components default value.
- */
- public static final String DEFAULT_VALUE_CLASSNAME_ATTRIBUTE = "defaultValueClassName";
-
- /**
- * Common Attribute
- * Attribute of type String
- * If this attribute is not defined, the property does not have a help id.
- */
- public static final String WIN_HELP_ATTRIBUTE = "winHelp";
-
- /**
- * Uncommon Attribute
- * Attribute of type String
- * Contains a list of Exceptions that should be code gen'd when the setter is called
- * List elements are separated by '\n' characters
- */
- public static final String RUNTIME_EXCEPTIONS_ATTRIBUTE = "runtimeExceptions";
-
- /**
- * Uncommon Attribute
- * Attribute of type Boolean
- * If this attribute is not defined, it is assumed to be false.
- * If this is true, the code gen for this property occurs before other properties code gen.
- */
- public static final String CODE_GEN_FIRST_ATTRIBUTE = "codeGenFirst";
-
- /**
- * Uncommon Attribute
- * Attribute of type Boolean
- * If this attribute is not defined, it is assumed to be false.
- * If this is true, the code gen for this property occurs are all components
- * have been added to its parent.
- */
- public static final String CODE_GEN_AFTER_EMBEDDED_ATTRIBUTE = "codeGenAfterEmbedded";
-
- /**
- * Uncommon Attribute
- * Attribute of type Boolean
- * If this attribute is not defined, it is assumed to be false.
- * If this is true, the code gen for this property occurs as late as possible
- */
- public static final String CODE_GEN_AT_END_ATTRIBUTE = "codeGenAtEnd";
-
- /**
- * Uncommon Attribute
- * Attribute of type Boolean
- * If this attribute is not defined, it is assumed to be false.
- */
- public static final String EXTRACT_INITIAL_VALUE_FROM_INDEXED_PROPERTY_ATTRIBUTE = "extractInitialIndexedPropertyValue";
- }
-